home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / DllClose.au3 < prev    next >
Text File  |  2007-09-08  |  154b  |  4 lines

  1. $dll = DllOpen("user32.dll")
  2. $result = DllCall($dll, "int", "MessageBox", "hwnd", 0, "str", "Some text", "str", "Some title", "int", 0)
  3. DllClose($dll)
  4.